MutableDelegatable

abstract class MutableDelegatable(camelToSnake: Boolean) : Delegatable

Functions

contains
Link copied to clipboard
open operator fun contains(name: String): Boolean
getOptional
Link copied to clipboard
abstract fun getOptional(name: String): String?
getOrElse
Link copied to clipboard
fun getOrElse(name: String, default: () -> String): String
Get the input passed for name, or default if it was not passed.
getOrPut
Link copied to clipboard
fun getOrPut(name: String, default: () -> String): String
Get name, or set default for name and return it.
getRequired
Link copied to clipboard
abstract fun getRequired(name: String): String
set
Link copied to clipboard
abstract fun set(name: String, value: String)

Inheritors

Environment
Link copied to clipboard
state
Link copied to clipboard

Sources

js source
Link copied to clipboard